6a7d13fcd74d9f41fabc66d121f186a5ba044906,src/main/java/org/esa/beam/processor/baer/BaerProcessor.java,BaerProcessor,createOutputProduct,#,526

Before Change


        // copy geocoding and flags
        // ------------------------
        ProductUtils.copyGeoCoding(_inputProduct, _outputProduct);
        ProductUtils.copyFlagBands(_inputProduct, _outputProduct);

        // write the processing request as metadata
        copyRequestMetaData(_outputProduct);

After Change


        // -------------------------
        ProductUtils.copyTiePointGrids(_inputProduct, _outputProduct);
        copyRequestMetaData(_outputProduct);
        copyFlagBands(_inputProduct, _outputProduct);

        copyGeoCoding(_inputProduct, _outputProduct);